<style>
    p { color:Green; }
</style>
<p style='color:Blue'>What color?</p>
                    table.tsttbl > td { ... }
                    
p { ... }
.tstclass { ... }
#tstid { ... }
p.tstclass { ... }
p#tstid { ... }
p.tstclass#tstid { ... }
.tstclass#tstid { ... }
table#tstid td, th { ... }  /* table#tstid td, and th */
p, a { ... }
                    ul li /* any decendent li of ul */ ul > li /* any child li of ul */ ul, ol > li /* ul, and ol > li */ ul > li, ol > li /* ul > li, and ol > li */ #testtable > td, th /* #testtable > td, and th */
<style> ??? > ul > li { color: Blue; } ??? { ???: Green; } </style> <div id='tr6'> <ul>Interesting! <li>Un ordered list</li> </ul> <ol>Amazing! <li>Ordered list</li> </ol> </div>